home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / rsynth / src / ASCII.c next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  1004 b   |  39 lines

  1. #include <stdio.h>
  2. #include "ASCII.h"
  3. char *ASCII[] =
  4. {
  5.  "null", "", "", "",
  6.  "", "", "", "",
  7.  "", "", "", "",
  8.  "", "", "", "",
  9.  "", "", "", "",
  10.  "", "", "", "",
  11.  "", "", "", "",
  12.  "", "", "", "",
  13.  "space", "exclamation mark", "double quote", "hash",
  14.  "dollar", "percent", "ampersand", "quote",
  15.  "open parenthesis", "close parenthesis", "asterisk", "plus",
  16.  "comma", "minus", "full stop", "slash",
  17.  "zero", "one", "two", "three",
  18.  "four", "five", "six", "seven",
  19.  "eight", "nine", "colon", "semi colon",
  20.  "less than", "equals", "greater than", "question mark",
  21.  "at", "A", "B", "C",
  22.  "D", "E", "F", "G",
  23.  "H", "I", "J", "K",
  24.  "L", "M", "N", "O",
  25.  "P", "Q", "R", "S",
  26.  "T", "U", "V", "W",
  27.  "X", "Y", "Z", "open bracket",
  28.  "back slash", "close bracket", "circumflex", "underscore",
  29.  "back quote", "A", "B", "C",
  30.  "D", "E", "F", "G",
  31.  "H", "I", "J", "K",
  32.  "L", "M", "N", "O",
  33.  "P", "Q", "R", "S",
  34.  "T", "U", "V", "W",
  35.  "X", "Y", "Z", "open brace",
  36.  "vertical bar", "close brace", "tilde", "delete",
  37.  NULL
  38. };
  39.